home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 23 / Amiga Format AFCD23 (Feb 1998, Issue 107).iso / -seriously_amiga- / shareware / graphics / povray3 / povray3_060 / texsamps / stones / pinkmarb.pov < prev    next >
Text File  |  1997-12-12  |  672b  |  39 lines

  1. // Persistence Of Vision Raytracer version 3.0 sample file.
  2.  
  3. global_settings { assumed_gamma 2.2 }
  4.  
  5. #include "colors.inc"
  6. #include "pinkmarb.map"
  7.  
  8. camera {
  9.    location <0, 10, -20>
  10.    direction <0, 0,  3>
  11.    right x*1.33
  12.    look_at 1.5*y
  13. }
  14.  
  15. light_source {<-50, 50, -1000> color Gray75}
  16. light_source {< 50, 30, -20> color White}
  17.  
  18. background { color Gray30 }
  19.  
  20. #declare Stack =
  21. union {
  22.    sphere{<0, 4, 0>, 1}
  23.    cone { -y,1, y, 0.5 translate 2*y }
  24.    box { -1, 1}
  25.    no_shadow
  26. }
  27.  
  28. object {
  29.     Stack
  30.     texture{
  31.         pigment {
  32.             granite
  33.             color_map { M_PinkMarb }
  34.             scale 2
  35.         }
  36.         finish { specular 0.35 roughness 0.015 }
  37.     }
  38. }
  39.